ti: common: board_detect: Return a valid empty string for un-initialized eeprom
authorNishanth Menon <[email protected]>
Tue, 11 Oct 2016 17:39:05 +0000 (12:39 -0500)
committerTom Rini <[email protected]>
Mon, 31 Oct 2016 14:12:21 +0000 (10:12 -0400)
commit7774e97aa77c1fc18283a1ee1bfb9bdf7c6a14f2
treeca27bb46cf4f2d5b4c2900ffafba805649407005
parent2a78c9e7196ff49bdf53d0b88b49b5eb337461fe
ti: common: board_detect: Return a valid empty string for un-initialized eeprom

Current logic for query of revision, board_name, config returns
NULL. Users of these functions do a direct strncmp to compare.
Unfortunately, as per conventions require two valid strings to compare
against and the current implementation causes a crash when compared
with NULL.

We'd still like to maintain the simplistic usage of these APIs instead
of redundant if (string) res=strncmp(fn(),"cmp",n); flowing all over
the place.

Hence, since the version, name and config is already pre-initialized
with empty string, just dont check for invalid header in the first
place and return the empty string to the caller.

Reported-by: Brad Griffis <[email protected]>
Signed-off-by: Nishanth Menon <[email protected]>
Reviewed-by: Lokesh Vutla <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
[trini: Correct was'nt -> wasn't typo]
Signed-off-by: Tom Rini <[email protected]>
board/ti/common/board_detect.c
board/ti/common/board_detect.h